home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 22 / 4 / DISK2247.ZIP / CBDDL102.ZIP / ROLODECK.DDL < prev   
Text File  |  1990-07-03  |  833b  |  25 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "@(#)rolodeck.ddl    1.5 - 90/07/03" */
  5.  
  6. /* file assignments */
  7. data file    "rolodeck.dat"    contains rolodeck;
  8. index file    "rdcont.ndx"    contains rd_contact;
  9. index file    "rdcomp.ndx"    contains rd_company;
  10.  
  11. /* record definitions */
  12. record rolodeck {                /* rolodeck record */
  13.     unique key t_string    rd_contact[41];    /* contact name */
  14.     t_string        rd_title[41];    /* contact title */
  15.     key t_string        rd_company[41];    /* company name */
  16.     t_string        rd_addr[81];    /* address */
  17.     t_string        rd_city[26];    /* city */
  18.     t_string        rd_state[3];    /* state */
  19.     t_string        rd_zip[11];    /* zip code */
  20.     t_string        rd_phone[13];    /* phone number */
  21.     t_string        rd_ext[5];    /* phone extension */
  22.     t_string        rd_fax[13];    /* fax number */
  23.     t_string        rd_notes[161];    /* notes */
  24. };
  25.